home *** CD-ROM | disk | FTP | other *** search
/ BCI NET / BCI NET Dec 94.iso / archives / programming / blitzbasic / blitz-list200994.lha / blitz-list / text0444.txt < prev    next >
Encoding:
Text File  |  1994-09-20  |  1.7 KB  |  36 lines

  1. Date sent: 29-JUN-1994 
  2.  
  3. >I never use animations for games. But I want to use one as a intro 
  4. >for my comming game Hero 2094..I don't know the difference between 
  5. >those animation formats..
  6.  
  7. For the people out there who don't know:
  8.  
  9.   Anim5: this is a basic byte run packed, delta compressed Anim format.  It is
  10. widely used and is the format that DPaint uses.  Compression is good but
  11. playback speeds can suffer with big, colourful animations.
  12.  
  13.   Anim7: there are to different ways anim7's can be done: either word
  14. compression or longword compression.
  15.          the main feature of anim7's is that they unpack a lot faster than
  16. Anim5 since they are packed on words and longwords rather than bytes. 
  17. Typically, they are a fair bit bigger than Anim5's but big anims, like 256
  18. colour high res anims NEED the reduced unpacking time that Anim7's give.
  19.  
  20.   My anim player supports at the moment: Anim5 and Anim7 (word and longword).
  21.  
  22. Steve Mc.
  23.  
  24. +---------------------------------------------------------------------------+
  25. | Stephen McNamara  Reflective Images| Gripes : Someones spotted a T.T. bug!|
  26. |====================================+======================================|
  27. | A1200/340HD/6MB/Blitz2             | ToolTypes Library  Workbench Library |
  28. |                                    | [###############!] [###############] |
  29. |                                    | Finished Project : RI Libs v3.2      |
  30. | Steven Matty     : sis3147         | [###########################:::::::] |
  31. | Stephen McNamara : sis3149         | Finished Project : Map Editor v1.1   |
  32. | @sisvax.sis.port.ac.uk             | [######################::::::::::::] |
  33. \____________________________________|______________________________________/
  34.  
  35.  
  36.